extjs.spec.js ➔ describe(ꞌExt JSꞌ)   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
nc 1
nop 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A extjs.spec.js ➔ ... ➔ it(ꞌtests extjs existꞌ) 0 3 1
1
describe('Ext JS', function() {
2
    it('tests extjs exist', function() {
3
        expect(Ext).toBeDefined();
0 ignored issues
show
Bug introduced by
The variable Ext seems to be never declared. If this is a global, consider adding a /** global: Ext */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
4
    });
5
});